home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 551-575 / disk_575 / reqtools / include13 / utility / tagitem.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  545b  |  31 lines

  1. #ifndef UTILITY_TAGITEM_H
  2. #define UTILITY_TAGITEM_H
  3. /*
  4. **   $Filename: utility/tagitem.i $
  5. **   $Release: 1.0 $
  6. **
  7. **   Clone of 2.0 include file 'utility/tagitem.h'
  8. */
  9.  
  10. #ifndef EXEC_TYPES_H
  11. #include <exec/types.h>
  12. #endif    /* EXEC_TYPES_H */
  13.  
  14. typedef ULONG Tag;
  15.  
  16. struct TagItem {
  17.    Tag ti_Tag;
  18.    ULONG ti_Data;
  19.    };
  20.  
  21. #define TAG_DONE         0L
  22. #define TAG_END             0L
  23. #define TAG_IGNORE         1L
  24. #define TAG_MORE         2L
  25. #define TAG_SKIP         3L
  26. #define TAG_USER         0x80000000
  27. #define TAGFILTER_AND         0
  28. #define TAGFILTER_NOT         1
  29.  
  30. #endif /* UTILITY_TAGITEM_H */
  31.